5aac110f70930e52584c8b33e1daf2f62565c199,ij/io/Opener.java,Opener,openFFT,#ImagePlus#,974

Before Change


		ImagePlus imp2 = new ImagePlus(imp.getTitle(), ps);
		imp2.setProperty("FHT", fht);
		imp2.setProperty("Info", imp.getProperty("Info"));
		fht.originalWidth = (int)Tools.parseDouble(imp2.getProp("width"),0);
		fht.originalHeight = (int)Tools.parseDouble(imp2.getProp("height"),0);
		fht.originalBitDepth = (int)Tools.parseDouble(imp2.getProp("bitdepth"),8);
		fht.originalColorModel = ip.getColorModel();

After Change


		ImagePlus imp2 = new ImagePlus(imp.getTitle(), ps);
		imp2.setProperty("FHT", fht);
		imp2.setProperty("Info", imp.getInfoProperty());
		fht.originalWidth = (int)imp2.getNumericProperty("width");
		fht.originalHeight = (int)imp2.getNumericProperty("height");
		fht.originalBitDepth = (int)imp2.getNumericProperty("bitdepth");
		fht.originalColorModel = ip.getColorModel();